home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-03 / qbwiz13.zip / SOURCE.ZIP / BACK.ASM next >
Assembly Source File  |  1992-07-14  |  920b  |  37 lines

  1. comment #
  2.  
  3.    +----------------------------------------------------------------------+
  4.    |                                                                      |
  5.    |         QBWiz  Copyright (c) 1990-1992  Thomas G. Hanlin III         |
  6.    |                                                                      |
  7.    |                       QuickBasic Access Library                      |
  8.    |                                                                      |
  9.    +----------------------------------------------------------------------+
  10.  
  11. #
  12.  
  13. public  BACKCOLOR
  14.  
  15.  
  16. .model medium
  17.  
  18. .code
  19.  
  20.  
  21.  
  22. BACKCOLOR     proc                     ; get default background color
  23.               xor            ax,ax
  24.               mov            al,b$BackColor
  25.               ret
  26. BACKCOLOR     endp                     ; get default background color
  27.  
  28.  
  29.  
  30. .data
  31.  
  32. extrn  b$BackColor: byte
  33.  
  34.  
  35.  
  36.               end
  37.